home *** CD-ROM | disk | FTP | other *** search
- /*
- |======================================================================
- |
- | (c) copyright 1988
- | V.I. Corporation
- |
- |======================================================================
- */
- #ifdef VMS
- #define GLOBALREF globalref
- #define GLOBALDEF globaldef
- #else
- #ifdef _WIN32
- #define GLOBALREF extern
- #define GLOBALDEF __declspec(dllexport)
- #else
- #define GLOBALREF extern
- #define GLOBALDEF
- #endif
- #endif
- #define NULL (LONG)0
- #define S_FPRINTF fprintf
- #define S_PRINTF printf
- #define S_SPRINTF sprintf
- #define S_STRCAT strcat
- #define S_STRCMP strcmp
- #define S_STRCPY strcpy
- #define S_STRLEN Mstrlen
- #define VOID void
- #define CHAR char
- #define INT int
- typedef char *ADDRESS;
- typedef long LONG;
-
-